home *** CD-ROM | disk | FTP | other *** search
/ Invisible Universe / Invisible Universe (1995)(Voyager)[Mac-PC].iso / mac / MOVIES / STARMAP.DIR / 00344_Script_344 < prev    next >
Text File  |  1995-11-16  |  680b  |  36 lines

  1. on exitFrame
  2.   global gHelpClick
  3.   
  4.   if rollover(3) then
  5.     puppetsprite 3,true
  6.     set cn = the castNum of sprite 3
  7.     if the name of cast cn = "P" then exit
  8.     
  9.     set the castNum of sprite 3 = cn + 1
  10.     updateStage
  11.     puppetSprite 3, false
  12.     
  13.     set t = the ticks+30
  14.     repeat while t < the ticks
  15.     end repeat
  16.     
  17.     
  18.     repeat while rollover(3)
  19.       if the mouseDown then
  20.         go to the frame-1
  21.         updateStage
  22.         
  23.         repeat while the mouseDown
  24.         end repeat
  25.         
  26.         exit repeat
  27.         
  28.       end if
  29.     end repeat
  30.     
  31.     set gHelpClick = the ticks + 60
  32.   end if
  33.   
  34.   go to the frame
  35.   
  36. end